home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
EnigmA Amiga Run 1997 February
/
EnigmA AMIGA RUN 15 (1997)(G.R. Edizioni)(IT)[!][issue 1997-02][PLANET CD V].iso
/
enigma
/
earcd
/
utility
/
utilhard
/
lcdaem18.lha
/
LCDaemon
/
Rexx
/
tst.rexx
< prev
Wrap
OS/2 REXX Batch file
|
1996-10-13
|
462b
|
17 lines
/* Demonstration of all REXX commands supported by LCDaemon */
OPTIONS RESULTS /* Use Result for some commands */
ADDRESS 'LCDAEMON'
/* lcdmessage [time t] [pri n] message */
say 'Sending test message to LCD...'
lcdmessage time 200 pri 2 "testing..."
/* getlines & getcharacters :
return parameters supplied to LCDaemon at startup */
getlines
lines=Result
getcharacters
chars=Result
say 'Your LCD is configured for' lines 'lines of' chars 'characters.'